home *** CD-ROM | disk | FTP | other *** search
Java Source | 2003-04-29 | 480 b | 29 lines |
- package com.jproxy.samples.rmi.test;
-
- import java.rmi.*;
- import java.rmi.server.UnicastRemoteObject;
-
- public class TestImpl
- extends UnicastRemoteObject
- implements TestRmi
- {
- public TestImpl()
- throws RemoteException
- {
- }
-
- public long getServerTime()
- throws RemoteException
- {
- long time = System.currentTimeMillis();
- System.out.println(new java.util.Date(time));
- return time;
- }
-
- public byte[] echoBytes(byte[] bytes)
- throws RemoteException
- {
- return bytes;
- }
- }
-